home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.2 Development Libraries / SGI IRIX 6.2 Development Libraries.iso / dist / complib.idb / usr / share / catman / p_man / cat3 / complib / lsamen.z / lsamen
Text File  |  1996-03-14  |  1KB  |  67 lines

  1.  
  2.  
  3.  
  4. LLLLSSSSAAAAMMMMEEEENNNN((((3333FFFF))))                                                          LLLLSSSSAAAAMMMMEEEENNNN((((3333FFFF))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      LSAMEN - test if the first N letters of CA are the same as the first N
  10.      letters of CB, regardless of case
  11.  
  12. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  13.      LOGICAL FUNCTION LSAMEN( N, CA, CB )
  14.  
  15.          CHARACTER*(  * ) CA, CB
  16.  
  17.          INTEGER      N
  18.  
  19. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  20.      LSAMEN  tests if the first N letters of CA are the same as the first N
  21.      letters of CB, regardless of case.  LSAMEN returns .TRUE. if CA and CB
  22.      are equivalent except for case and .FALSE. otherwise.  LSAMEN also
  23.      returns .FALSE. if LEN( CA ) or LEN( CB ) is less than N.
  24.  
  25.  
  26. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  27.      N       (input) INTEGER
  28.              The number of characters in CA and CB to be compared.
  29.  
  30.      CA      (input) CHARACTER*(*)
  31.              CB      (input) CHARACTER*(*) CA and CB specify two character
  32.              strings of length at least N.  Only the first N characters of
  33.              each string will be accessed.
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.